arketing('click', el);
});
// 双击:复制 + 记录 copy
$(document).on('dblclick', '[data-marketing="1"][data-marketing-copy]', function (e) {
var el = this;
el.setAttribute('data-mkt_dbl_ts', Date.now().toString());
var mode = el.getAttribute('data-marketing-copy');
var val = '';
if (mode === 'href') {
val = el.getAttribute('href') || '';
// 双击复制链接时,避免重复打开新窗口/跳转
e.preventDefault();
e.stopPropagation();
} else {
val = (el.textContent || '').trim();
}
if (val) {
copyText(val);
reportMarketing('copy', el, val);
}
});
// 选择:选中文本时记录 select(用 mouseup/touchend/keyup,避免 selectionchange 过于频繁)
$(document).on('mouseup touchend', function () {
setTimeout(reportSelectIfAny, 0);
});
$(document).on('keyup', function (e) {
// 常见的键盘选择:Shift+方向键
if (e && e.shiftKey) {
setTimeout(reportSelectIfAny, 0);
}
});
// 复制:Ctrl+C / 右键复制(只能可靠拿到“选中文本”的复制)
document.addEventListener('copy', function () {
setTimeout(reportCopyIfAny, 0);
});
})();
Send Message
Privacy statement: Your privacy is very important to Us. Our company promises not to
disclose your personal information to any external company with out your explicit
permission.